home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-08-07 | 1.9 KB | 88 lines | [TEXT/MPS ] |
- (*
- File: FileTransferTools.mod
-
- Contains: CommToolbox File Transfer Tools Interfaces.
-
- Version: Technology: System 7.5
- Package: Universal Interfaces 2.0 in “MPW Latest” on ETO #17
-
- Copyright: © 1984-1995 by Apple Computer, Inc.
- All rights reserved.
-
- Bugs?: If you find a problem with this file, use the Apple Bug Reporter
- stack. Include the file and version information (from above)
- in the problem description and send to:
- Internet: apple.bugs.applelink.apple.com
- AppleLink: APPLE.BUGS
-
- *)
-
- (*$TAGS-*)
- (*$CALLING PASCAL*)
- MODULE FileTransferTools;
-
- IMPORT SYSTEM, Types, Dialogs;
-
- (* $PUSH*)
- (* $ALIGN MAC68K*)
- (* $LibExport+*)
-
- CONST
- (* DEFs *)
- fdefType* = LONG("fdef");
- fsetType* = LONG("fset");
- fvalType* = LONG("fval");
- flocType* = LONG("floc");
- fscrType* = LONG("fscr");
- fbndType* = LONG("fbnd");
- fverType* = LONG("vers");
-
- (* control *)
- ftInitMsg* = 0;
- ftDisposeMsg* = 1;
- ftSuspendMsg* = 2;
- ftResumeMsg* = 3;
- ftMenuMsg* = 4;
- ftEventMsg* = 5;
- ftActivateMsg* = 6;
- ftDeactivateMsg* = 7;
- ftGetErrorStringMsg* = 8;
- ftAbortMsg* = 52;
- ftStartMsg* = 100;
- ftExecMsg* = 102;
- ftSendMsg* = 103;
- ftReceiveMsg* = 104;
- (* setup *)
- ftSpreflightMsg* = 0;
- ftSsetupMsg* = 1;
- ftSitemMsg* = 2;
- ftSfilterMsg* = 3;
- ftScleanupMsg* = 4;
- (* validate *)
- ftValidateMsg* = 0;
-
- ftDefaultMsg* = 1;
- (* scripting *)
- ftMgetMsg* = 0;
- ftMsetMsg* = 1;
- (* localization *)
- ftL2English* = 0;
- ftL2Intl* = 1;
-
-
- TYPE
- FTSetupStruct* = RECORD
- theDialog*: Dialogs.DialogPtr; (* the dialog form the application *)
- count*: INTEGER; (* first appended item *)
- theConfig*: Types.Ptr; (* the config record to setup *)
- procID*: INTEGER; (* procID of the tool *)
- END;
-
- FTSetupPtr* = POINTER TO FTSetupStruct;
-
-
- (* $ALIGN RESET*)
- (* $POP*)
-
- END FileTransferTools.
-